summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/Action1.kt
blob: 9041a7bee771e51b0a6c14231a47925d6d4e6754 (plain) (blame)
1
2
3
4
5
6
7
8
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

package org.yuzu.yuzu_emu.utils

interface Action1<T> {
    fun call(t: T?)
}